javascript
Javascript
post-thumbnail
profile_image

Destructuring

비구조화는 배열이나 객체의 여러 속성값을 변수로 쉽게 꺼낼 수 있는 문법이다.

2022-07-16
post-thumbnail
profile_image

Object-Oriented Programming

자바스크립트에서 모든 오브젝트에는 프로토타입이라는 숨겨진 속성이 있다.

2022-07-16
post-thumbnail
profile_image

Optional Chaining

자바스크립트에서는 객체의 속성에 접근할때 .을 찍는다.

2022-07-16
post-thumbnail
profile_image

Spread operator 및 몇 가지 편의 기능

Spread operator 및 몇 가지 편의 기능

2022-07-16
post-thumbnail
profile_image

Validation Check

실무에서 Validation Check는 필수이다. 실제로 개발하면서 수없는 비지니스 로직이 따르는데, 거기엔 항상 ‘그’가 존재한다

2022-07-16
post-thumbnail
profile_image

변수 데이터 불변성 & 함수의 매개변수

기본형 데이터인 숫자, 문자열, boolean, null, undefined, Symbol은 모두 불변값이다.

2022-07-14